home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 19 / CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso / CUCD / WWW / Show_WWW < prev    next >
AmigaDOS Script File  |  1997-11-26  |  600b  |  31 lines

  1. .key url
  2. .bra {
  3. .ket }
  4.  
  5. set Browser `RequestChoice "Browse Web Pages" "Which WWW browser would you like to use?" "AWeb|IBrowse|Voyager|Cancel"`
  6.  
  7. if $Browser EQ 0
  8.     quit
  9.     endif
  10.  
  11. if NOT $CDInit EQ TRUE
  12.     execute :InitCD CHECK
  13.     endif
  14.  
  15. if $Browser EQ 1
  16.     Run >NIL: WWW:AWeb3/AWebDemo LOCAL {url$WWW:AWeb3/CUdemo.html}
  17.     quit
  18.     endif
  19.  
  20. if $Browser EQ 2
  21.     Run >NIL: WWW:IBrowse/IBrowse file://localhost/{url$WWW:IBrowse/CUdemo.html} CONFIGDIR WWW:IBrowse
  22.     quit
  23.     endif
  24.  
  25.  
  26. if $Browser EQ 3
  27.     Run >NIL: WWW:Voyager/V file://localhost/{url$WWW:Voyager/CUstart.html}
  28.     quit
  29.     endif
  30.  
  31.